(*	Solace will define the following variables for you:
 *	
 *	oldPath - A Mac OS 9 styled full path name to the attachment file
 *	unixPath - A Unix-styled full path name
 *	theRecipients - A comma-separated list of email addresses to send to
 *	theSubject - String which contained the subject
 *	theBody - String which contains the body of the email
 *)

tell application "Outlook Express"
	set newMessage to make new draft window with properties {recipient:theRecipients, subject:theSubject, content:theBody & return & return}
	tell newMessage
		make new file with properties {name:oldPath}
	end tell
	
	activate
end tell